home *** CD-ROM | disk | FTP | other *** search
/ AOL File Library: 2,801 to 2,900 / aol-file-protocol-4400-2801-to-2900.zip / AOLDLs / C++ Files Library / Graphic Gems I, II & III (C_C++) / Graphics Gems C Code.sea / GemsIII / alloc / alloc.h < prev   
Text File  |  1992-06-16  |  214b  |  13 lines

  1. /* alloc.h
  2.  *
  3.  * Header for alloc.c
  4.  *
  5.  * The type alloc_handle_t provides an opaque reference to the
  6.  * alloc pool - only the alloc routines know its structure.
  7.  */
  8.  
  9. typedef
  10. struct { int dummy; }
  11. alloc_handle_t;
  12.  
  13.